home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_09 / 9n09098b < prev    next >
Encoding:
Text File  |  1995-11-01  |  104 b   |  12 lines

  1. class X
  2.     {
  3.     int &r;
  4. public:
  5.     X(int i) : r(i) { }
  6.     ...
  7.     };
  8. ...
  9. int n;
  10. X x(n);
  11.  
  12.